home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Audio / Patchmix / Source / ImageController.h < prev    next >
Text File  |  1992-07-31  |  488b  |  23 lines

  1. // Controller.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. #import <objc/Object.h>
  8.  
  9. @interface ImageController:Object
  10. {
  11.        id    patchVw;
  12.         id    paletteView;
  13.     id    instPath;
  14.     id     scorePath;
  15.     id    sndPath;
  16. }
  17.  
  18. /* delegate methods */
  19. - appDidInit:sender;
  20. - acceptedWindow:acceptView fromSource:source;
  21.  
  22. @end
  23.